home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998…tember: Reference Library / Dev.CD Sep 98 RL1.toast / Technical Documentation / develop / develop Issue 27 / develop Issue 27 code / Internet Config Assistant / InternetAssistant / InternetAssistantHelp.r < prev    next >
Encoding:
Text File  |  1996-06-12  |  17.8 KB  |  697 lines  |  [TEXT/CWIE]

  1. #include <Types.r>
  2. #include <BalloonTypes.r>
  3.  
  4. #define kCommonPanel 200
  5. #define kIntroPanel 201
  6. #define kPersonalInfoPanel 202
  7. #define kLocationPanel 203
  8. #define kSignaturePanel 204
  9. #define kEmailOnePanel 205
  10. #define kEmailTwoPanel 206
  11. #define kHomePagePanel 207
  12. #define kNNTPHostPanel 208
  13. #define kConclusionPanel 209
  14. #define kDetailsPanel 210
  15.  
  16. #define kContinueButton 1
  17. #define kGoBackButton 2
  18. #define kBannerBackground 3
  19. #define kHelpCommonItem 5
  20. #define kLastCommonItem 5
  21. #define kUserNameField (kLastCommonItem + 1)
  22. #define kOrganizationField (kLastCommonItem + 2)
  23. #define kMapUserItem (kLastCommonItem + 1)
  24. #define kSignatureField (kLastCommonItem + 1)
  25. #define kEmailField (kLastCommonItem + 1)
  26. #define kPasswordField (kLastCommonItem + 2)
  27. #define kEmailAccountField (kLastCommonItem + 1)
  28. #define kSMTPHostField (kLastCommonItem + 2)
  29. #define kHomePageField (kLastCommonItem + 1)
  30. #define kNNTPHostField (kLastCommonItem + 1)
  31. #define kGoAheadButton (kLastCommonItem + 1)
  32. #define kCancelButton (kLastCommonItem + 2)
  33. #define kShowDetailsButton (kLastCommonItem + 3)
  34. #define kHideDetailsButton (kLastCommonItem + 3
  35.  
  36. resource 'hfdr' (kHMHelpID, "Finder Help", purgeable) 
  37. {
  38.     HelpMgrVersion,                     /* Version of Help Manager */
  39.     hmDefaultOptions,                    /* Options */
  40.     0,                                    /* Balloon definition ID */
  41.     0,                                    /* Variation code */
  42.     {                                    /*help messages for items*/
  43.         HMTEResItem                     /*store help messages in 'TEXT' kHMHelpID*/
  44.         {         
  45.             kHMHelpID
  46.         }
  47.     }
  48. };
  49.  
  50.  
  51. resource 'hdlg' (kCommonPanel, "", purgeable) 
  52. {
  53.     HelpMgrVersion,                     /* Version of Help Manager */
  54.     0,                                    /* Start help with first item in 'DITL' */
  55.     hmDefaultOptions,                    /* Options */
  56.     0,                                    /* Balloon definition ID */
  57.     0,                                    /* Variation code */
  58.     /* Missing-item */
  59.     HMSkipItem
  60.     {                    
  61.     },
  62.     /* Dialog items*/
  63.     {                                    
  64.     /* Continue button*/
  65.         HMStringResItem 
  66.         {
  67.             {8, 23},                     /* Place tip inside left edge of button*/
  68.             {0,0,0,0},                    /* Default alternate rectangle: use */
  69.                                         /* display rectangle*/
  70.             0, 0,                        /* Enabled state*/
  71.             kCommonPanel, 2,             /* Dimmed state*/
  72.             0, 0,                         /* Enabled and checked state */
  73.             kCommonPanel, 1,            /* Other state (enabled state for icon buttons) */
  74.         },
  75.     /* Go Back button */
  76.         HMStringResItem 
  77.         {
  78.             {8, 2},                     /* Place tip inside right edge of item */
  79.             {0,0,0,0},                    /* Default alternate rectangle: use */
  80.                                         /* display rectangle */
  81.             0, 0,                        /* Enabled state */
  82.             kCommonPanel, 4,             /* Dimmed state */
  83.             0, 0,                         /* Enabled and checked state */
  84.             kCommonPanel, 3,            /* Other state (enabled state for icon buttons) */
  85.         }
  86.     }
  87. };
  88.  
  89. resource 'hdlg' (kPersonalInfoPanel, "", purgeable) 
  90. {
  91.     HelpMgrVersion,                     /* Version of Help Manager */
  92.     0,                                    /* Start help with first item in 'DITL' */
  93.     hmDefaultOptions,                    /* Options */
  94.     0,                                    /* Balloon definition ID */
  95.     0,                                    /* Variation code */
  96.     /* Missing-item */
  97.     HMSkipItem                             /*no missing-items help messages*/
  98.     {                    
  99.     },
  100.     {                                    /*help messages for items*/
  101.     /* Name field */
  102.         HMStringResItem 
  103.         {
  104.             {0, 0},                     /*place tip inside left edge of button*/
  105.             {0,0,0,0},                    /*default alternate rectangle: use */
  106.                                         /* display rectangle*/
  107.             kPersonalInfoPanel, 1,            /*enabled continue button*/
  108.             0, 0,                         /*no dimmed state for field*/
  109.             0, 0,                         /*no enabled-and-checked state for */
  110.                                             /* button*/
  111.             0, 0                         /*no other marked states for button*/
  112.         },
  113.     /* Organization field*/
  114.         HMStringResItem 
  115.         {
  116.             {0, 0},                     /*place tip inside left edge of button*/
  117.             {0,0,0,0},                    /*default alternate rectangle: use */
  118.                                         /* display rectangle*/
  119.             kPersonalInfoPanel, 2,            /*enabled continue button*/
  120.             0, 0,                         /*no dimmed state for field*/
  121.             0, 0,                         /*no enabled-and-checked state for */
  122.                                             /* button*/
  123.             0, 0                         /*no other marked states for button*/
  124.         }
  125.     }
  126. };
  127.  
  128. resource 'hdlg' (kLocationPanel, "", purgeable) 
  129. {
  130.     HelpMgrVersion,                     /* Version of Help Manager */
  131.     0,                                    /* Start help with first item in 'DITL' */
  132.     hmDefaultOptions,                    /* Options */
  133.     0,                                    /* Balloon definition ID */
  134.     0,                                    /* Variation code */
  135.     /* Missing-item */
  136.     HMSkipItem                             /*no missing-items help messages*/
  137.     {                    
  138.     },
  139.     {                                    /*help messages for items*/
  140.     /* Map */
  141.         HMStringResItem 
  142.         {
  143.             {0, 0},                     /* Tip location */
  144.             {0,0,0,0},                    /* Alternate rectangle */
  145.             kLocationPanel, 1,            /* Enabled*/
  146.             0, 0,                         /* Dimmed state*/
  147.             0, 0,                         /* Enabled and checked state */
  148.             0, 0,                        /* Other state */
  149.         }
  150.     }
  151. };
  152.  
  153.  
  154.  
  155. resource 'hdlg' (kSignaturePanel, "", purgeable) 
  156. {
  157.     HelpMgrVersion,                     /* Version of Help Manager */
  158.     0,                                    /* Start help with first item in 'DITL' */
  159.     hmDefaultOptions,                    /* Options */
  160.     0,                                    /* Balloon definition ID */
  161.     0,                                    /* Variation code */
  162.     /* Missing-item */
  163.     HMSkipItem                             /*no missing-items help messages*/
  164.     {                    
  165.     },
  166.     {                                    /*help messages for items*/
  167.     /* Signature */
  168.         HMStringResItem 
  169.         {
  170.             {0, 0},                     /* Tip location */
  171.             {0,0,0,0},                    /* Alternate rectangle */
  172.             kSignaturePanel, 1,            /* Enabled state */
  173.             0, 0,                         /* Dimmed state*/
  174.             0, 0,                         /* Enabled and checked state */
  175.             0, 0,                        /* Other state */
  176.         }
  177.     }
  178. };
  179.  
  180.  
  181.  
  182. resource 'hdlg' (kEmailOnePanel, "", purgeable) 
  183. {
  184.     HelpMgrVersion,                     /* Version of Help Manager */
  185.     0,                                    /* Start help with first item in 'DITL' */
  186.     hmDefaultOptions,                    /* Options */
  187.     0,                                    /* Balloon definition ID */
  188.     0,                                    /* Variation code */
  189.     /* Missing-item */
  190.     HMSkipItem                             /*no missing-items help messages*/
  191.     {                    
  192.     },
  193.     {                                    /*help messages for items*/
  194.     /* E-mail address */
  195.         HMStringResItem 
  196.         {
  197.             {0, 0},                     /* Tip location */
  198.             {0,0,0,0},                    /* Alternate rectangle */
  199.             kEmailOnePanel, 1,            /* Enabled state */
  200.             0, 0,                         /* Dimmed state*/
  201.             0, 0,                         /* Enabled and checked state */
  202.             0, 0,                        /* Other state */
  203.         },
  204.     /* Password */
  205.         HMStringResItem 
  206.         {
  207.             {0, 0},                     /* Tip location */
  208.             {0,0,0,0},                    /* Alternate rectangle */
  209.             kEmailOnePanel, 2,            /* Enabled state */
  210.             0, 0,                         /* Dimmed state*/
  211.             0, 0,                         /* Enabled and checked state */
  212.             0, 0,                        /* Other state */
  213.         }
  214.     }
  215. };
  216.  
  217.  
  218. resource 'hdlg' (kEmailTwoPanel, "", purgeable) 
  219. {
  220.     HelpMgrVersion,                     /* Version of Help Manager */
  221.     0,                                    /* Start help with first item in 'DITL' */
  222.     hmDefaultOptions,                    /* Options */
  223.     0,                                    /* Balloon definition ID */
  224.     0,                                    /* Variation code */
  225.     /* Missing-item */
  226.     HMSkipItem                             /*no missing-items help messages*/
  227.     {                    
  228.     },
  229.     {                                    /*help messages for items*/
  230.     /* E-mail account (POP) */
  231.         HMStringResItem 
  232.         {
  233.             {0, 0},                     /* Tip location */
  234.             {0,0,0,0},                    /* Alternate rectangle */
  235.             kEmailTwoPanel, 1,            /* Enabled state */
  236.             0, 0,                         /* Dimmed state*/
  237.             0, 0,                         /* Enabled and checked state */
  238.             0, 0,                        /* Other state */
  239.         },
  240.     /* E-mail host */
  241.         HMStringResItem 
  242.         {
  243.             {0, 0},                     /* Tip location */
  244.             {0,0,0,0},                    /* Alternate rectangle */
  245.             kEmailTwoPanel, 2,            /* Enabled state */
  246.             0, 0,                         /* Dimmed state*/
  247.             0, 0,                         /* Enabled and checked state */
  248.             0, 0,                        /* Other state */
  249.         }
  250.     }
  251. };
  252.  
  253.  
  254.  
  255. resource 'hdlg' (kHomePagePanel, "", purgeable) 
  256. {
  257.     HelpMgrVersion,                     /* Version of Help Manager */
  258.     0,                                    /* Start help with first item in 'DITL' */
  259.     hmDefaultOptions,                    /* Options */
  260.     0,                                    /* Balloon definition ID */
  261.     0,                                    /* Variation code */
  262.     /* Missing-item */
  263.     HMSkipItem                             /*no missing-items help messages*/
  264.     {                    
  265.     },
  266.     {                                    /*help messages for items*/
  267.     /* Home page */
  268.         HMStringResItem 
  269.         {
  270.             {0, 0},                     /* Tip location */
  271.             {0,0,0,0},                    /* Alternate rectangle */
  272.             kHomePagePanel, 1,            /* Enabled state */
  273.             0, 0,                         /* Dimmed state*/
  274.             0, 0,                         /* Enabled and checked state */
  275.             0, 0,                        /* Other state */
  276.         }
  277.     }
  278. };
  279.  
  280.  
  281.  
  282. resource 'hdlg' (kNNTPHostPanel, "", purgeable) 
  283. {
  284.     HelpMgrVersion,                     /* Version of Help Manager */
  285.     0,                                    /* Start help with first item in 'DITL' */
  286.     hmDefaultOptions,                    /* Options */
  287.     0,                                    /* Balloon definition ID */
  288.     0,                                    /* Variation code */
  289.     /* Missing-item */
  290.     HMSkipItem                             /*no missing-items help messages*/
  291.     {                    
  292.     },
  293.     {                                    /*help messages for items*/
  294.     /* Home page */
  295.         HMStringResItem 
  296.         {
  297.             {0, 0},                     /* Tip location */
  298.             {0,0,0,0},                    /* Alternate rectangle */
  299.             kNNTPHostPanel, 1,            /* Enabled state */
  300.             0, 0,                         /* Dimmed state*/
  301.             0, 0,                         /* Enabled and checked state */
  302.             0, 0,                        /* Other state */
  303.         }
  304.     }
  305. };
  306.  
  307.  
  308. resource 'hdlg' (kConclusionPanel, "", purgeable) 
  309. {
  310.     HelpMgrVersion,                     /* Version of Help Manager */
  311.     0,                                    /* Start help with first item in 'DITL' */
  312.     hmDefaultOptions,                    /* Options */
  313.     0,                                    /* Balloon definition ID */
  314.     0,                                    /* Variation code */
  315.     /* Missing-item */
  316.     HMSkipItem                             /*no missing-items help messages*/
  317.     {                    
  318.     },
  319.     {                                    /*help messages for items*/
  320.     /* Go Ahead */
  321.         HMStringResItem 
  322.         {
  323.             {0, 0},                     /* Tip location */
  324.             {0,0,0,0},                    /* Alternate rectangle */
  325.             kConclusionPanel, 1,        /* Enabled state */
  326.             0, 0,                         /* Dimmed state*/
  327.             0, 0,                         /* Enabled and checked state */
  328.             0, 0,                        /* Other state */
  329.         },
  330.     /* Cancel */
  331.         HMStringResItem 
  332.         {
  333.             {0, 0},                     /* Tip location */
  334.             {0,0,0,0},                    /* Alternate rectangle */
  335.             kConclusionPanel, 2,        /* Enabled state */
  336.             0, 0,                         /* Dimmed state*/
  337.             0, 0,                         /* Enabled and checked state */
  338.             0, 0,                        /* Other state */
  339.         },
  340.     /* Show Details */
  341.         HMStringResItem 
  342.         {
  343.             {0, 0},                     /* Tip location */
  344.             {0,0,0,0},                    /* Alternate rectangle */
  345.             kConclusionPanel, 3,        /* Enabled state */
  346.             0, 0,                         /* Dimmed state*/
  347.             0, 0,                         /* Enabled and checked state */
  348.             0, 0,                        /* Other state */
  349.         }
  350.     }
  351. };
  352.  
  353.  
  354. resource 'hdlg' (kDetailsPanel, "", purgeable) 
  355. {
  356.     HelpMgrVersion,                     /* Version of Help Manager */
  357.     0,                                    /* Start help with first item in 'DITL' */
  358.     hmDefaultOptions,                    /* Options */
  359.     0,                                    /* Balloon definition ID */
  360.     0,                                    /* Variation code */
  361.     /* Missing-item */
  362.     HMSkipItem                             /*no missing-items help messages*/
  363.     {                    
  364.     },
  365.     {                                    /*help messages for items*/
  366.     /* Go Ahead */
  367.         HMStringResItem 
  368.         {
  369.             {0, 0},                     /* Tip location */
  370.             {0,0,0,0},                    /* Alternate rectangle */
  371.             kConclusionPanel, 1,        /* Enabled state */
  372.             0, 0,                         /* Dimmed state*/
  373.             0, 0,                         /* Enabled and checked state */
  374.             0, 0,                        /* Other state */
  375.         },
  376.     /* Cancel */
  377.         HMStringResItem 
  378.         {
  379.             {0, 0},                     /* Tip location */
  380.             {0,0,0,0},                    /* Alternate rectangle */
  381.             kConclusionPanel, 2,        /* Enabled state */
  382.             0, 0,                         /* Dimmed state*/
  383.             0, 0,                         /* Enabled and checked state */
  384.             0, 0,                        /* Other state */
  385.         },
  386.     /* Hide Details */
  387.         HMStringResItem 
  388.         {
  389.             {0, 0},                     /* Tip location */
  390.             {0,0,0,0},                    /* Alternate rectangle */
  391.             kConclusionPanel, 4,        /* Enabled state */
  392.             0, 0,                         /* Dimmed state*/
  393.             0, 0,                         /* Enabled and checked state */
  394.             0, 0,                        /* Other state */
  395.         }
  396.     }
  397. };
  398.  
  399. resource 'STR#' (kCommonPanel, "", purgeable) 
  400. {
  401.     {
  402.     /*[1]*/
  403.     "Click this button to go forward.";
  404.     /*[2]*/
  405.     "Click this button to go forward.\n"
  406.     "Not available now because this is the end of the interview.";
  407.     /*[3]*/
  408.     "To review the previous question, click this button.";
  409.     /*[4]*/
  410.     "Click this arrow to go back.\n"
  411.     "Not available now because this is the start of the interview.";
  412.     }
  413. };
  414.  
  415.  
  416.  
  417. resource 'STR#' (kPersonalInfoPanel, "", purgeable) 
  418. {
  419.     {
  420.     /*[1]*/
  421.     "Type your name here. This name will be how you are identified "
  422.     "when you use your e-mail and Internet programs.";
  423.     /*[2]*/
  424.     "Type the name of the company you work for or the "
  425.     "organization you belong to here.\n"
  426.     "You can leave it blank if you want.";
  427.     }
  428. };
  429.  
  430.  
  431. resource 'STR#' (kLocationPanel, "", purgeable) 
  432. {
  433.     {
  434.     /*[1]*/
  435.     "On this map, click the area of your city or town. The location will be "
  436.     "used to determine which Internet host computers are convenient "
  437.     "for you."
  438.     }
  439. };
  440.  
  441.  
  442. resource 'STR#' (kSignaturePanel, "", purgeable) 
  443. {
  444.     {
  445.     /*[1]*/
  446.     "Type in this box any text that you want attached to the end of "
  447.     "your e-mail messages. This text is most useful when it contains "
  448.     "basic information about how to contact you."
  449.     }
  450. };
  451.  
  452.  
  453.  
  454. resource 'STR#' (kEmailOnePanel, "", purgeable) 
  455. {
  456.     {
  457.     /*[1]*/
  458.     "Type in this box your e-mail address. Usually, your address includes some form"
  459.     "of your name as an identifier, followed by @ and the name of the host "
  460.     "computer that will receive mail for you.";
  461.     /*[2]*/
  462.     "Type here your e-mail password. Aks yout e-mail account provider "
  463.     "for your password and whether you can change it."
  464.     }
  465. };
  466.  
  467.  
  468. resource 'STR#' (kEmailTwoPanel, "", purgeable) 
  469. {
  470.     {
  471.     /*[1]*/
  472.     "Type your e-mail POP account here. Your account may be "
  473.     "a sligtly longer version of your address";
  474.     /*[2]*/
  475.     "Type your e-mail host computer here. This computer may be "
  476.     "different from the one that holds your e-mail account, but "
  477.     "its name ends with similar text because both computers are in "
  478.     "the same domain."
  479.     }
  480. };
  481.  
  482.  
  483.  
  484. resource 'STR#' (kHomePagePanel, "", purgeable) 
  485. {
  486.     {
  487.     /*[1]*/
  488.     "Type in this box the Web site address (also called the URL, or "
  489.     "Uniform Resource Locator) of the site that you want to make "
  490.     "your home page. You can leave the suggested site unchanged and "
  491.     "change it later after you become familiat with different Web sites."
  492.     }
  493. };
  494.  
  495.  
  496.  
  497.  
  498. resource 'STR#' (kNNTPHostPanel, "", purgeable) 
  499. {
  500.     {
  501.     /*[1]*/
  502.     "Type the name of your newsgroup host computer here."
  503.     "You can leave it blank and add it later when you decide "
  504.     "to join newgroups discussion."
  505.     }
  506. };
  507.  
  508.  
  509.  
  510. resource 'STR#' (kConclusionPanel, "", purgeable) 
  511. {
  512.     {
  513.     /*[1]*/
  514.     "To configure your Internet browsing and e-mail programs "
  515.     " according to your settings, click this button.";
  516.     /*[2]*/
  517.     "To close this assistant without making any changes to your Internet settings, "
  518.     "click this button.";
  519.     /*[3]*/
  520.     "To see a detailled summary of the Internet settings this assistant "
  521.     "will use, click this button.";
  522.     /*[4]*/
  523.     "To hide the detailled summary, "
  524.     "click this button.";
  525.     }
  526. };
  527.  
  528.  
  529. resource 'hmnu' (128, "", purgeable) 
  530. {
  531.     HelpMgrVersion,                     /* Version of Help Manager */
  532.     hmDefaultOptions,                    /* Options */
  533.     0,                                    /* Balloon definition ID */
  534.     0,                                    /* Variation code */
  535.     /* Missing-item */
  536.     HMSkipItem
  537.     {                    
  538.     },
  539.     {
  540.         HMStringResItem 
  541.         {
  542.             128, 1,                        /* Enabled state */
  543.             0, 0,                         /* Dimmed state*/
  544.             0, 0,                         /* Enabled and checked state */
  545.             0, 0,                        /* Other state */
  546.         },
  547.         HMStringResItem 
  548.         {
  549.             128, 2,                        /* Enabled state */
  550.             0, 0,                         /* Dimmed state*/
  551.             0, 0,                         /* Enabled and checked state */
  552.             0, 0,                        /* Other state */
  553.         }
  554.     }
  555.  
  556. };
  557.  
  558.  
  559. resource 'hmnu' (129, "", purgeable) 
  560. {
  561.     HelpMgrVersion,                     /* Version of Help Manager */
  562.     hmDefaultOptions,                    /* Options */
  563.     0,                                    /* Balloon definition ID */
  564.     0,                                    /* Variation code */
  565.     /* Missing-item */
  566.     HMSkipItem
  567.     {                    
  568.     },
  569.     {
  570.         HMStringResItem 
  571.         {
  572.             128, 3,                        /* Enabled state */
  573.             0, 0,                         /* Dimmed state*/
  574.             0, 0,                         /* Enabled and checked state */
  575.             0, 0,                        /* Other state */
  576.         },
  577.         HMStringResItem 
  578.         {
  579.             128, 4,                        /* Enabled state */
  580.             0, 0,                         /* Dimmed state*/
  581.             0, 0,                         /* Enabled and checked state */
  582.             0, 0,                        /* Other state */
  583.         },
  584.         HMSkipItem
  585.         {                    
  586.         },
  587.         HMStringResItem 
  588.         {
  589.             128, 4,                        /* Enabled state */
  590.             0, 0,                         /* Dimmed state*/
  591.             0, 0,                         /* Enabled and checked state */
  592.             0, 0,                        /* Other state */
  593.         }
  594.     }
  595.  
  596. };
  597.  
  598.  
  599. resource 'hmnu' (130, "", purgeable) 
  600. {
  601.     HelpMgrVersion,                     /* Version of Help Manager */
  602.     hmDefaultOptions,                    /* Options */
  603.     0,                                    /* Balloon definition ID */
  604.     0,                                    /* Variation code */
  605.     /* Missing-item */
  606.     HMSkipItem
  607.     {                    
  608.     },
  609.     {
  610.         HMStringResItem 
  611.         {
  612.             128, 5,                        /* Enabled state */
  613.             0, 0,                         /* Dimmed state*/
  614.             0, 0,                         /* Enabled and checked state */
  615.             0, 0,                        /* Other state */
  616.         },
  617.         HMStringResItem 
  618.         {
  619.             128, 6,                        /* Enabled state */
  620.             128, 7,                     /* Dimmed state*/
  621.             0, 0,                         /* Enabled and checked state */
  622.             0, 0,                        /* Other state */
  623.         },
  624.         HMSkipItem
  625.         {                    
  626.         },
  627.         HMStringResItem 
  628.         {
  629.             128, 8,                        /* Enabled state */
  630.             128, 9,                        /* Dimmed state*/
  631.             0, 0,                         /* Enabled and checked state */
  632.             0, 0,                        /* Other state */
  633.         },
  634.         HMStringResItem 
  635.         {
  636.             128, 10,                        /* Enabled state */
  637.             128, 11,                        /* Dimmed state*/
  638.             0, 0,                         /* Enabled and checked state */
  639.             0, 0,                        /* Other state */
  640.         },
  641.         HMStringResItem 
  642.         {
  643.             128, 12,                        /* Enabled state */
  644.             128, 13,                    /* Dimmed state*/
  645.             0, 0,                         /* Enabled and checked state */
  646.             0, 0,                        /* Other state */
  647.         }
  648.     }
  649.  
  650. };
  651.  
  652. resource 'STR#' (128, "", purgeable) 
  653. {
  654.     {
  655.     /*[1]*/
  656.     "Apple Menu\n\n"
  657.     "Use this menu to open an item in the Apple Menu Items folder or to "
  658.     "find out more about the Internet Config Assistant.";
  659.     /*[2]*/
  660.     "Displays information about the Internet Config Assistant.";
  661.     /*[3]*/
  662.     "File menu\n\n"
  663.     "Use this menu to quit the Internet Config Assistant.";
  664.     /*[4]*/
  665.     "Closes the assistant window and quits without changing your Internet configuration.";
  666.     /*[5]*/
  667.     "Edit menu\n\n"
  668.     "Use this menu to work with text or to undo and action.";
  669.     /*[6]*/
  670.     "Undoes your last action if it involved cutting, copying, pasting or typing.";
  671.     /*[7]*/
  672.     "Undoes your last action if it involved cutting, copying, pasting or typing.\n"
  673.     "Not available because your action connot be undone";
  674.     /*[8]*/
  675.     "Cuts the selected text. The text you cut is removed and placed in a temporary "
  676.     "storage area called the Clipboard.";
  677.     /*[9]*/
  678.     "Cuts the selected text. The text you cut is removed and placed in a temporary "
  679.     "storage area called the Clipboard. \n"
  680.     "Not available because no text is selected.";
  681.     /*[10]*/
  682.     "Copies the selected text";
  683.     /*[11]*/
  684.     "Copies the selected text. \n"
  685.     "Not available because no text is selected.";
  686.     /*[12]*/
  687.     "Places the content of the Clipboard at the location of the insertion point "
  688.     "(or in place of the current selection).";
  689.     /*[13]*/
  690.     "Places the content of the Clipboard at the location of the insertion point "
  691.     "(or in place of the current selection).\n"
  692.     "Not available because the Clipboard doesn't contain text or "
  693.     "because the insertion point is not at a location where pasting is possible.";
  694.     }
  695. };
  696.  
  697.